home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / popup.h < prev    next >
C/C++ Source or Header  |  1996-06-04  |  189b  |  17 lines

  1. /*
  2.  * PopUp.h
  3.  */
  4.  
  5. #ifndef _POPUP_H_
  6. #define _POPUP_H_
  7.  
  8. typedef
  9.     struct
  10.     {
  11.         char    *name;        /* Nom de l'option */
  12.         int    value;        /* Valeur associ‚e */
  13.     }
  14.     POPUP_ENTRY;
  15.  
  16.  
  17. #endif